home *** CD-ROM | disk | FTP | other *** search
- on(press){
- if(_root.myLives > 0)
- {
- _root.gameSound.stop();
- _root.ninjaDead._name = "ninja";
- _root.initGame();
- _root.resetBonus();
- _root.ninja.gotoAndStop(1);
- _root.ninja._xscale = Math.abs(_root.ninja._xscale);
- _root.ninja._x = 100;
- _root.ninja._y = 365;
- _root.dead._name = "warrior";
- _root.warrior.gotoAndStop(1);
- _root.warrior._x = 515;
- _root.warrior._y = 365;
- _root.gameSound.start(0,1000);
- _root.gameSound.setVolume(35);
- if(_root.myMusic._currentframe == 2)
- {
- _root.gameSound.stop();
- }
- gotoAndStop(1);
- }
- else
- {
- _root.gotoAndStop("loading");
- }
- }
-